home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / compress / unzip531.zip / unix / Makefile < prev    next >
Makefile  |  1997-05-26  |  32KB  |  874 lines

  1. #==============================================================================
  2. # Makefile for UnZip, UnZipSFX and fUnZip:  Unix and MS-DOS ("real" makes only)
  3. # Version:  5.31                                                    17 May 1997
  4. #==============================================================================
  5.  
  6.  
  7. # INSTRUCTIONS (such as they are):
  8. #
  9. # "make sunos"    -- makes UnZip in current directory on a generic SunOS 4.x Sun
  10. # "make list"    -- lists all supported systems (targets)
  11. # "make help"    -- provides pointers on what targets to try if problems occur
  12. # "make wombat" -- chokes and dies if you haven't added the specifics for your
  13. #            Wombat 68000 (or whatever) to the systems list
  14. #
  15. # CF are flags for the C compiler.  LF are flags for the loader.  LF2 are more
  16. # flags for the loader, if they need to be at the end of the line instead of at
  17. # the beginning (for example, some libraries).  FL and FL2 are the corre-
  18. # sponding flags for fUnZip.  LOCAL_UNZIP is an environment variable that can
  19. # be used to add default C flags to your compile without editing the Makefile
  20. # (e.g., -DDEBUG_STRUC, or -FPi87 on PCs using Microsoft C).
  21. #
  22. # Some versions of make do not define the macro "$(MAKE)"; this is rare, but
  23. # if things don't work, try using "make" instead of "$(MAKE)" in your system's
  24. # makerule.  Or try adding the following line to your .login file:
  25. #    setenv MAKE "make"
  26. # (That never works--makes which are too stupid to define MAKE are also too
  27. # stupid to look in the environment--but try it anyway for kicks. :-) )
  28. #
  29. # Memcpy and memset are provided for those systems that don't have them; they
  30. # are in fileio.c and will be used if -DZMEM is included in CF.  These days
  31. # almost all systems have them.
  32. #
  33. # Be sure to test your new UnZip (and UnZipSFX and fUnZip); successful compila-
  34. # tion does not always imply a working program.
  35.  
  36.  
  37. #####################
  38. # MACRO DEFINITIONS #
  39. #####################
  40.  
  41. # Defaults most systems use (use LOCAL_UNZIP in environment to add flags,
  42. # such as -DDOSWILD).
  43.  
  44. # UnZip flags
  45. CC = cc#    try using "gcc" target rather than changing this (CC and LD
  46. LD = $(CC)#    must match, else "unresolved symbol:  ___main" is possible)
  47. AS = as
  48. LOC = $(LOCAL_UNZIP)
  49. AF = $(LOC)
  50. CF = -O -I. $(LOC)
  51. LF = -o unzip
  52. LF2 = -s
  53.  
  54. # UnZipSFX flags
  55. SL = -o unzipsfx
  56. SL2 = $(LF2)
  57.  
  58. # fUnZip flags
  59. FL = -o funzip
  60. FL2 = $(LF2)
  61.  
  62. # general-purpose stuff
  63. #CP = cp
  64. CP = ln
  65. LN = ln
  66. RM = rm -f
  67. CHMOD = chmod
  68. STRIP = strip
  69. E =
  70. O = .o
  71. M = unix
  72. SHELL = /bin/sh
  73.  
  74. # defaults for crc32 stuff and system dependent headers
  75. CRC32 = crc32
  76. OSDEP_H =
  77.  
  78. # object files
  79. OBJS1 = unzip$O $(CRC32)$O crctab$O crypt$O envargs$O explode$O
  80. OBJS2 = extract$O fileio$O globals$O inflate$O list$O match$O
  81. OBJS3 = process$O ttyio$O unreduce$O unshrink$O zipinfo$O
  82. OBJS = $(OBJS1) $(OBJS2) $(OBJS3) $M$O
  83. LOBJS = $(OBJS)
  84. OBJSDLL = $(OBJS:.o=.pic.o) api.pic.o
  85. OBJX = unzipsfx$O $(CRC32)$O crctab$O crypt$O extract_$O fileio$O globals$O \
  86.     inflate$O match$O process_$O ttyio$O $M_$O
  87. LOBJX = $(OBJX)
  88. OBJF = funzip$O $(CRC32)$O crypt_$O globals_$O inflate_$O ttyio_$O
  89. #OBJS_OS2 = $(OBJS1:.o=.obj) $(OBJS2:.o=.obj) os2.obj
  90. #OBJF_OS2 = $(OBJF:.o=.obj)
  91. UNZIP_H = unzip.h unzpriv.h globals.h $(OSDEP_H)
  92.  
  93. # installation
  94. # (probably can change next two to `install' and `install -d' if you have it)
  95. INSTALL = cp
  96. INSTALL_D = mkdir -p
  97. # on some systems, manext=l and MANDIR=/usr/man/man$(manext) may be appropriate
  98. manext = 1
  99. prefix = /usr/local
  100. BINDIR = $(prefix)/bin#            where to install executables
  101. MANDIR = $(prefix)/man/man$(manext)#    where to install man pages
  102. INSTALLEDBIN = $(BINDIR)/funzip$E $(BINDIR)/unzip$E $(BINDIR)/unzipsfx$E \
  103.     $(BINDIR)/zipgrep$E $(BINDIR)/zipinfo$E
  104. INSTALLEDMAN = $(MANDIR)/funzip.$(manext) $(MANDIR)/unzip.$(manext) \
  105.     $(MANDIR)/unzipsfx.$(manext) $(MANDIR)/zipgrep.$(manext) \
  106.     $(MANDIR)/zipinfo.$(manext)
  107.  
  108. # Solaris 2.x stuff:
  109. PKGDIR = IZunzip
  110. VERSION = Version 5.31
  111.  
  112. UNZIPS = unzip$E funzip$E unzipsfx$E
  113. # this is a little ugly...well, OK, it's a lot ugly:
  114. MANS = unix/funzip.1 unix/unzip.1 unix/unzipsfx.1 unix/zipgrep.1 unix/zipinfo.1
  115. DOCS = funzip.doc unzip.doc unzipsfx.doc zipgrep.doc zipinfo.doc
  116.  
  117. # list of supported systems/targets in this version
  118. SYSTEMS1 = generic generic2 generic3 generic_zlib
  119. SYSTEMS2 = 386i 3Bx 7300 7300_gcc aix aix_rt amdahl amdahl_eft apollo aviion
  120. SYSTEMS3 = bsd bsdi bsdi_noasm bull coherent convex cray cray_opt cyber_sgi
  121. SYSTEMS4 = dec dnix encore eta freebsd gcc gould hk68 hp hpux isc isc_gcc isi
  122. SYSTEMS5 = linux linux_dos linux_noasm linux_shlib linux_shlibz minix mips 
  123. SYSTEMS6 = next next10 next2x next3x nextfat osf1 pixel ptx pyramid realix 
  124. SYSTEMS7 = regulus rs6000 sco sco_dos sco_sl sco_x286 sequent sgi solaris 
  125. SYSTEMS8 = solaris_pkg stardent stellar sunos3 sunos4 sysv sysv_gcc sysv6300 
  126. SYSTEMS9 = tahoe ti_sysv ultrix vax v7 wombat xenix xos
  127.  
  128.  
  129. ####################
  130. # DEFAULT HANDLING #
  131. ####################
  132.  
  133. # By default, print help on which makefile targets to try.  (The SYSTEM
  134. # variable is no longer supported; use "make <target>" instead.)
  135.  
  136. help:
  137.     @echo ""
  138.     @echo\
  139.  "  If you're not sure about the characteristics of your system, try typing"
  140.     @echo\
  141.  '  "make generic".  If the compiler barfs and says something unpleasant about'
  142.     @echo\
  143.  '  "timezone redefined," try typing "make clean" followed by "make generic2".'
  144.     @echo\
  145.  '  If, on the other hand, it complains about an undefined symbol _ftime, try'
  146.     @echo\
  147.  '  typing "make clean" followed by "make generic3".  One of these actions'
  148.     @echo\
  149.  '  should produce a working copy of unzip on most Unix systems.  If you know'
  150.     @echo\
  151.  '  a bit more about the machine on which you work, you might try "make list"'
  152.     @echo\
  153.  '  for a list of the specific systems supported herein.  (Many of them do'
  154.     @echo\
  155.  "  exactly the same thing, so don't agonize too much over which to pick if"
  156.     @echo\
  157.  '  two or more sound equally likely.)  Also check out the INSTALL file for'
  158.     @echo\
  159.  '  notes on compiling various targets.  As a last resort, feel free to read'
  160.     @echo\
  161.  '  the numerous comments within the Makefile itself.  Note that to compile'
  162.     @echo\
  163.  '  the decryption version of UnZip, you must obtain the full versions of'
  164.     @echo\
  165.  '  crypt.c and crypt.h (see the "Where" file for ftp and mail-server sites).'
  166.     @echo\
  167.  '  Have a mostly pretty good day.'
  168.     @echo ""
  169.  
  170. list:
  171.     @echo ""
  172.     @echo\
  173.  'Type "make <system>", where <system> is one of the following:'
  174.     @echo ""
  175.     @echo  "    $(SYSTEMS1)"
  176.     @echo ""
  177.     @echo  "    $(SYSTEMS2)"
  178.     @echo  "    $(SYSTEMS3)"
  179.     @echo  "    $(SYSTEMS4)"
  180.     @echo  "    $(SYSTEMS5)"
  181.     @echo  "    $(SYSTEMS6)"
  182.     @echo  "    $(SYSTEMS7)"
  183.     @echo  "    $(SYSTEMS8)"
  184.     @echo  "    $(SYSTEMS9)"
  185. #    @echo ""
  186. #    @echo\
  187. # 'Targets for related utilities (ZipInfo and fUnZip) include:'
  188. #    @echo ""
  189. #    @echo  "    $(SYS_UTIL1)"
  190. #    @echo  "    $(SYS_UTIL2)"
  191.     @echo ""
  192.     @echo\
  193.  'For further (very useful) information, please read the comments in Makefile.'
  194.     @echo ""
  195.  
  196. generic_msg:
  197.     @echo ""
  198.     @echo\
  199.  '  Attempting "make generic" now.  If this fails for some reason, type'
  200.     @echo\
  201.  '  "make help" and/or "make list" for suggestions.'
  202.     @echo ""
  203.  
  204.  
  205. ###############################################
  206. # BASIC COMPILE INSTRUCTIONS AND DEPENDENCIES #
  207. ###############################################
  208.  
  209. # this is for GNU make; comment out and notify zip-bugs if it causes errors
  210. .SUFFIXES:    .c .o .obj .pic.o
  211.  
  212. # yes, we should be able to use the $O macro to combine these two, but it
  213. # fails on some brain-damaged makes (e.g., AIX's)...no big deal
  214. .c.o:
  215.     $(CC) -c $(CF) $*.c
  216.  
  217. .c.obj:
  218.     $(CC) -c $(CF) $*.c
  219.  
  220. .c.pic.o:
  221.     $(CC) -c $(CF) -o $@ $*.c
  222.  
  223. # this doesn't work...directories are always a pain with implicit rules
  224. #.1.doc:        unix/$<
  225. #    nroff -Tman -man $< | col -b | uniq | \
  226. #     sed 's/Sun Release ..../Info-ZIP        /' > $@
  227.  
  228.  
  229. # these rules may be specific to Linux (or at least the GNU groff package)
  230. # and are really intended only for the authors' use in creating non-Unix
  231. # documentation files (which are provided with both source and binary
  232. # distributions).  We should probably add a ".1.man" rule for more generic
  233. # systems...
  234.  
  235. funzip.doc:    unix/funzip.1
  236. #    nroff -Tman -man unix/funzip.1 | col -b | uniq | \
  237. #     sed 's/Sun Release ..../Info-ZIP        /' > $@
  238.     nroff -Tman -man unix/funzip.1 | col -b | uniq | expand > $@
  239.  
  240. unzip.doc:    unix/unzip.1
  241. #    nroff -Tman -man unix/unzip.1 | col -b | uniq | \
  242. #     sed 's/Sun Release ..../Info-ZIP        /' > $@
  243.     nroff -Tman -man unix/unzip.1 | col -b | uniq | expand > $@
  244.  
  245. unzipsfx.doc:    unix/unzipsfx.1
  246. #    nroff -Tman -man unix/unzipsfx.1 | col -b | uniq | \
  247. #     sed 's/Sun Release ..../Info-ZIP        /' > $@
  248.     nroff -Tman -man unix/unzipsfx.1 | col -b | uniq | expand > $@
  249.  
  250. zipgrep.doc:    unix/zipgrep.1
  251. #    nroff -Tman -man unix/zipgrep.1 | col -b | uniq | \
  252. #     sed 's/Sun Release ..../Info-ZIP        /' > $@
  253.     nroff -Tman -man unix/zipgrep.1 | col -b | uniq | expand > $@
  254.  
  255. zipinfo.doc:    unix/zipinfo.1
  256. #    nroff -Tman -man unix/zipinfo.1 | col -b | uniq | \
  257. #     sed 's/Sun Release ..../Info-ZIP        /' > $@
  258.     nroff -Tman -man unix/zipinfo.1 | col -b | uniq | expand > $@
  259.  
  260.  
  261. all:        generic_msg generic
  262. unzips:        $(UNZIPS)
  263. objs:        $(OBJS)
  264. objsdll:    $(OBJSDLL)
  265. docs:        $(DOCS)
  266. unzipsman:    unzips docs
  267. unzipsdocs:    unzips docs
  268.  
  269.  
  270. # EDIT HERE FOR PARALLEL MAKES on Sequent (and others?)--screws up MS-DOS
  271. # make utilities if default:  change "unzip$E:" to "unzip$E:&"
  272.  
  273. unzip$E:    $(OBJS)            # add `&' for parallel makes
  274.     $(LD) $(LF) $(LOBJS) $(LF2)
  275.  
  276. unzipsfx$E:    $(OBJX)            # add `&' for parallel makes
  277.     $(LD) $(SL) $(LOBJX) $(SL2)
  278.  
  279. funzip$E:    $(OBJF)            # add `&' for parallel makes
  280.     $(LD) $(FL) $(OBJF) $(FL2)
  281.  
  282. zipinfo$E:    unzip$E            # `&' is pointless here...
  283.     @echo\
  284.  '  This is a Unix-specific target.  ZipInfo is not enabled in some MS-DOS'
  285.     @echo\
  286.  '  versions of UnZip; if it is in yours, copy unzip.exe to zipinfo.exe'
  287.     @echo\
  288.  '  or else invoke as "unzip -Z" (in a batch file, for example).'
  289.     $(LN) unzip$E zipinfo$E
  290.  
  291.  
  292. crc32$O:    crc32.c $(UNZIP_H) zip.h
  293. crctab$O:    crctab.c $(UNZIP_H) zip.h
  294. crypt$O:    crypt.c $(UNZIP_H) zip.h crypt.h ttyio.h
  295. envargs$O:    envargs.c $(UNZIP_H)
  296. explode$O:    explode.c $(UNZIP_H)
  297. extract$O:    extract.c $(UNZIP_H) crypt.h
  298. fileio$O:    fileio.c $(UNZIP_H) crypt.h ttyio.h ebcdic.h
  299. funzip$O:    funzip.c $(UNZIP_H) crypt.h ttyio.h tables.h
  300. globals$O:    globals.c $(UNZIP_H)
  301. inflate$O:    inflate.c inflate.h $(UNZIP_H)
  302. list$O:        list.c $(UNZIP_H)
  303. match$O:    match.c $(UNZIP_H)
  304. process$O:    process.c $(UNZIP_H)
  305. ttyio$O:    ttyio.c $(UNZIP_H) zip.h crypt.h ttyio.h
  306. unreduce$O:    unreduce.c $(UNZIP_H)
  307. unshrink$O:    unshrink.c $(UNZIP_H)
  308. unzip$O:    unzip.c $(UNZIP_H) crypt.h version.h consts.h
  309. zipinfo$O:    zipinfo.c $(UNZIP_H)
  310.  
  311. crypt_$O:    crypt.c $(UNZIP_H) zip.h crypt.h ttyio.h    # funzip only
  312.     -$(CP) crypt.c crypt_.c
  313.     $(CC) -c $(CF) -DFUNZIP crypt_.c
  314.     $(RM) crypt_.c
  315.  
  316. extract_$O:    extract.c $(UNZIP_H) crypt.h            # unzipsfx only
  317.     -$(CP) extract.c extract_.c
  318.     $(CC) -c $(CF) -DSFX extract_.c
  319.     $(RM) extract_.c
  320.  
  321. globals_$O:    globals.c $(UNZIP_H)                # funzip only
  322.     -$(CP) globals.c globals_.c
  323.     $(CC) -c $(CF) -DFUNZIP globals_.c
  324.     $(RM) globals_.c
  325.  
  326. inflate_$O:    inflate.c inflate.h $(UNZIP_H) crypt.h        # funzip only
  327.     -$(CP) inflate.c inflate_.c
  328.     $(CC) -c $(CF) -DFUNZIP inflate_.c
  329.     $(RM) inflate_.c
  330.  
  331. ttyio_$O:    ttyio.c $(UNZIP_H) zip.h crypt.h ttyio.h    # funzip only
  332.     -$(CP) ttyio.c ttyio_.c
  333.     $(CC) -c $(CF) -DFUNZIP ttyio_.c
  334.     $(RM) ttyio_.c
  335.  
  336. # optional assembler replacements
  337. crc_i86$O:    msdos/crc_i86.asm                # 16bit only
  338.     $(AS) $(AF) msdos/crc_i86.asm $(ASEOL)
  339.  
  340. crc_gcc$O:    crc_i386.S                    # 32bit, GNU AS
  341.     $(AS) $(AF) -x assembler-with-cpp -c -o $@ crc_i386.S
  342.  
  343. crc_sysv$O:    crc_i386.S                    # 32bit, SysV AS
  344.     $(CC) -E $(AF) crc_i386.S >crc_i386.s
  345.     $(AS) -o $@ crc_i386.s
  346.     $(RM) crc_i386.s
  347.  
  348. msdos$O:    msdos/msdos.c $(UNZIP_H) version.h        # DOS only
  349.     $(CC) -c $(CF) msdos/msdos.c
  350.  
  351. msdos_$O:    msdos/msdos.c $(UNZIP_H)            # DOS unzipsfx
  352.     -$(CP) msdos/msdos.c msdos_.c > nul
  353.     $(CC) -c $(CF) -DSFX msdos_.c
  354.     $(RM) msdos_.c
  355.  
  356. #os2$O:        os2/os2.c $(UNZIP_H)                # OS/2 only
  357. #    $(CC) -c $(CF) os2/os2.c
  358.  
  359.  
  360. process_$O:    process.c $(UNZIP_H)                # unzipsfx only
  361.     -$(CP) process.c process_.c
  362.     $(CC) -c $(CF) -DSFX process_.c
  363.     $(RM) process_.c
  364.  
  365. unix$O:        unix/unix.c $(UNZIP_H) version.h        # Unix only
  366.     $(CC) -c $(CF) unix/unix.c
  367.  
  368. unix_$O:    unix/unix.c $(UNZIP_H)                # Unix unzipsfx
  369.     -$(CP) unix/unix.c unix_.c
  370.     $(CC) -c $(CF) -DSFX unix_.c
  371.     $(RM) unix_.c
  372.  
  373. unix.pic.o:    unix/unix.c $(UNZIP_H) version.h        # Unix shlib
  374.     $(CC) -c $(CF) -o $@ unix/unix.c
  375.  
  376. unzipsfx$O:    unzip.c $(UNZIP_H) crypt.h version.h consts.h    # unzipsfx only
  377.     -$(CP) unzip.c unzipsfx.c
  378.     $(CC) -c $(CF) -DSFX unzipsfx.c
  379.     $(RM) unzipsfx.c
  380.  
  381.  
  382. unix_make:
  383. #    @echo\
  384. # '(Ignore any errors from `make'"' due to the following command; it's harmless.)"
  385.     -@2>&1 $(LN) unix/Makefile . > /dev/null || echo > /dev/null
  386.  
  387. # this really only works for Unix targets, unless E and O specified on cmd line
  388. clean:
  389.     @echo ""
  390.     @echo '         This is a Unix-specific target.  (Just so you know.)'
  391.     @echo ""
  392.     rm -f $(UNZIPS) $(OBJS) $(OBJF) $(OBJX) api$O apihelp$O crc_gcc$O \
  393.       crc_sysv$O unzipstb$O crypt_.c extract_.c globals_.c inflate_.c \
  394.       ttyio_.c crc_i386.s msdos_.c process_.c unix_.c unzipsfx.c
  395.     rm -rf ./$(PKGDIR)
  396.  
  397. # Package generation interface (by J.Bush).  Originally tested under Sun
  398. # Solaris 2.x.  Other SVr4s may be very similar and could possibly use this.
  399. # Note:  expects version info to be stored in VERSION macro variable.
  400. # See "README" under ./unix/Packaging
  401. #
  402. svr4package:    unzips
  403.     @echo "Creating SVR4 package for Unix ..."
  404.     -@rm -rf ./$(PKGDIR) ./$(PKGDIR)_`uname -p`.pkg
  405.     -@sed -e "s/.VERSION./$(VERSION)/g" \
  406.           -e "s/.PSTAMP./$(LOGNAME)_`date | tr  ' ' '_'`/g" \
  407.           -e "s/.ARCH./Solaris_`uname -rp | tr ' ' ','`/g" \
  408.           ./unix/Packaging/pkginfo.in > ./unix/Packaging/pkginfo
  409.     -@sed -e "s/.ARCH./`uname -p`/g" \
  410.           ./unix/Packaging/preinstall.in > ./unix/Packaging/preinstall
  411.     /usr/bin/pkgmk -d . -b . -r . -f ./unix/Packaging/prototype $(PKGDIR)
  412.     /usr/bin/pkgtrans -o -s . $(PKGDIR)_`uname -p`.pkg $(PKGDIR)
  413.     @echo " "
  414.     @echo "To install, copy $(PKGDIR)_`uname -p`.pkg to the target system, and"
  415.     @echo "issue the command (as root):  pkgadd -d $(PKGDIR)_`uname -p`.pkg"
  416.     @echo " "
  417.  
  418. install:    $(MANS)
  419.     -$(INSTALL_D) $(BINDIR)
  420.     $(INSTALL) $(UNZIPS) $(BINDIR)
  421.     $(INSTALL) unix/zipgrep $(BINDIR)
  422.     $(RM) $(BINDIR)/zipinfo$E
  423.     $(LN) $(BINDIR)/unzip$E $(BINDIR)/zipinfo$E
  424.     -$(INSTALL_D) $(MANDIR)
  425.     $(INSTALL) unix/funzip.1 $(MANDIR)/funzip.$(manext)
  426.     $(INSTALL) unix/unzip.1 $(MANDIR)/unzip.$(manext)
  427.     $(INSTALL) unix/unzipsfx.1 $(MANDIR)/unzipsfx.$(manext)
  428.     $(INSTALL) unix/zipgrep.1 $(MANDIR)/zipgrep.$(manext)
  429.     $(INSTALL) unix/zipinfo.1 $(MANDIR)/zipinfo.$(manext)
  430.     $(CHMOD) 755  $(INSTALLEDBIN)
  431.     $(CHMOD) 644  $(INSTALLEDMAN)
  432.  
  433. uninstall:
  434.     rm -f $(INSTALLEDBIN) $(INSTALLEDMAN)
  435.  
  436.  
  437. # the test zipfile
  438. TESTZIP = testmake.zip
  439.  
  440. # test some basic features of the build
  441. test:        check
  442.  
  443. check:
  444.     @echo '#####  This is a Unix-specific target.  (Just so you know.)'
  445.     @echo '#####     Make sure unzip, funzip and unzipsfx are compiled and'
  446.     @echo '#####     in this directory.'
  447.     @if test ! -f ./unzip; then \
  448.         echo "#####  ERROR:  can't find ./unzip"; exit 1; fi
  449.     @if test ! -f ./funzip; then \
  450.         echo "#####  ERROR:  can't find ./funzip"; exit 1; fi
  451.     @if test ! -f ./unzipsfx; then \
  452.         echo "#####  ERROR:  can't find ./unzipsfx"; exit 1; fi
  453. #
  454.     @if test ! -f $(TESTZIP); then \
  455.         echo "#####  ERROR:  can't find test file $(TESTZIP)"; exit 1; fi
  456. #
  457.     @echo "#####  testing extraction"
  458.     @./unzip -bo $(TESTZIP) testmake.zipinfo
  459.     @if test ! -f testmake.zipinfo ; then \
  460.         echo "#####  ERROR:  file extraction from $(TESTZIP) failed"; \
  461.         exit 1; fi
  462. #
  463.     @echo '#####  testing zipinfo (unzip -Z)'
  464.     @./unzip -Z $(TESTZIP) > testmake.unzip-Z
  465.     @if diff testmake.unzip-Z testmake.zipinfo; then echo "OK."; else \
  466.         echo "#####  WARNING:  zipinfo output doesn't match stored version"; \
  467.         echo '#####     (If the only difference is the file times, compare your'; \
  468.         echo '#####      timezone with the US Pacific timezone, which is eight'; \
  469.         echo '#####      hours west of Greenwich but effectively 7 hours west'; \
  470.         echo '#####      during summer Daylight Savings Time.  The upper two'; \
  471.         echo '#####      lines should correspond to your local time when the'; \
  472.         echo '#####      files were created, on 18 July 1996 at 6:24am PDT.  If'; \
  473.         echo '#####      the times are consistent, please ignore this warning.)'; \
  474.         fi
  475.     @$(RM) testmake.unzip-Z testmake.zipinfo
  476. #
  477.     @echo '#####  testing unzip -d exdir option'
  478.     @./unzip -bo $(TESTZIP) -d testun notes
  479.     @cat testun/notes
  480. #
  481.     @echo '#####  testing unzip -o and funzip (ignore funzip warning)'
  482.     @./unzip -boq $(TESTZIP) notes -d testun
  483.     @./funzip < $(TESTZIP) > testun/notes2
  484.     @if diff testun/notes testun/notes2; then true; else \
  485.         echo '#####  ERROR:  funzip output disagrees with unzip'; fi
  486. #
  487.     @echo '#####  testing unzipsfx (self-extractor)'
  488.     @cat unzipsfx $(TESTZIP) > testsfx
  489.     @$(CHMOD) 0700 testsfx
  490.     @./testsfx -bo notes
  491.     @if diff notes testun/notes; then true; else \
  492.         echo '#####  ERROR:  unzipsfx file disagrees with unzip'; fi
  493.     @$(RM) testsfx notes testun/notes testun/notes2
  494.     @rmdir testun
  495. #
  496.     @echo '#####  testing complete.'
  497.  
  498.  
  499. ################################
  500. # INDIVIDUAL MACHINE MAKERULES #
  501. ################################
  502.  
  503. #----------------------------------------------------------------------------
  504. #  Generic targets (can't assume make utility groks "$(MAKE)")
  505. #----------------------------------------------------------------------------
  506.  
  507. generic:    unzips       # first try if unknown
  508.  
  509. generic2:    unix_make  # second try if unknown:  hope make is called "make"
  510.     make -f unix/Makefile unzips CF="$(CF) -DBSD"
  511.  
  512. generic3:    unix_make  # third try if unknown:  hope make is called "make"
  513.     make -f unix/Makefile unzips CF="$(CF) -DSYSV"
  514.  
  515. # Generic unzip and funzip target using either shared or static zlib for
  516. # inflate rather than the original UnZip version.  (libz was libgz prior
  517. # to 0.94)  Need to figure out how to force unzipsfx to use static libz.
  518.  
  519. generic_zlib:    unix_make
  520.     @echo\
  521.  "This target assumes zlib (libz.a or libz.so.*) is already installed."
  522.     $(MAKE) unzip funzip CF="$(CF) -DUSE_ZLIB" LF2="-lz $(LF2)"
  523.  
  524. #----------------------------------------------------------------------------
  525. #  "Normal" group (BSD vs. SysV may be set in unzip.h via predefined macros):
  526. #----------------------------------------------------------------------------
  527.  
  528. 386i:        unzips    # sun386i, SunOS 4.0.2
  529. 3Bx:        unzips    # AT&T 3B2/1000-80; should work on any WE32XXX machine
  530. #aix_rt:        unzips    # IBM RT 6150 under AIX 2.2.1
  531. bull:        unzips    # Bull DPX/2, BOS 2.00.45 (doesn't require -Xk switch)
  532. convex:        unzips    # Convex C-120 and C-210 (-O is enough; -ext is default)
  533. cray:        unzips    # Cray-2 and Y-MP, using default (possibly old) compiler
  534. dec:        unzips    # DEC 5820 (MIPS RISC), test version of Ultrix v4.0
  535. encore:        unzips    # Multimax
  536. eta:        unzips    # ETA-10P*, hybrid SysV with BSD 4.3 enhancements
  537. gould:        unzips    # Gould PN9000 running UTX/32 2.1Bu01
  538. hp:        unzips    # HP 9000 series (68020), 4.3BSD or HP-UX A.B3.10 Ver D
  539. hpux:        unzips    # (to match zip's makefile entry)
  540. mips:        unzips    # MIPS M120-5(?), SysV.3 [error in sys/param.h file?]
  541. next10:        unzips    # NeXT (generic; use next2x or next3x for better opt.)
  542. osf1:        unzips    # DECstation, including Alpha-based; DEC OSF/1 v1.x
  543. pyr_:        unzips    # [failsafe target for pyramid target below]
  544. pyr_ucb:    unzips    # Pyramids running BSD universe by default (see below)
  545. realix:        unzips    # Modcomp Real/IX (SysV.3); note "gcc" = GLS C, not GNU
  546. sco:        unzips    # Xenix/386 (tested on 2.3.1); SCO Unix 3.2.0.
  547. sgi:        unzips    # Silicon Graphics; Irix 3.3.2, 4.0.x, 5.2, etc.
  548. stellar:    unzips    # gs-2000
  549. sun:        unzips    # old target; no good with solaris...use "sunos" now
  550. sunos:        unzips    # no good with SunOS 3.x...use "sunos3" or "sunos4" now
  551. sunos4:        unzips    # Sun 3, 4; SunOS 4.x (SOME SYSTEMS ARE SYSTEM V!)
  552. tahoe:        unzips    # tahoe (CCI Power6/32), 4.3BSD
  553. ultrix:        unzips    # VAXen, DEC 58x0 (MIPS guts), DECstation 2100; v4.x
  554. vax:        unzips    # general-purpose VAX target (not counting VMS)
  555.  
  556. #----------------------------------------------------------------------------
  557. #  BSD group (for timezone structs [struct timeb]):
  558. #----------------------------------------------------------------------------
  559.  
  560. bsd:        _bsd    # generic BSD (BSD 4.2 & Ultrix handled in unzip.h)
  561.  
  562. _bsd:        unix_make
  563.     $(MAKE) unzips CF="$(CF) -DBSD"
  564.  
  565. #----------------------------------------------------------------------------
  566. #  SysV group (for extern long timezone and ioctl.h instead of sgtty.h):
  567. #----------------------------------------------------------------------------
  568.  
  569. aix_rt:        _sysv    # IBM RT 6150 under AIX 2.2.1
  570. aviion:        _sysv    # Data General AViiONs, DG/UX 4.3x
  571. pyr_att:    _sysv    # Pyramids running AT&T (SysV) universe by default
  572. solaris:    _sysv    # Sun SPARC & x86, Solaris 2.x
  573. solaris_pkg:    _sysvp    # Sun SPARC & x86, Solaris 2.x; make package when done
  574. stardent:    _sysv    # Stardent ...
  575. sysv:        _sysv    # generic System V Unix (Xenix handled in unzip.h)
  576. xos:        _sysv    # Olivetti LSX-3005..3045, X/OS 2.3 and 2.4
  577.  
  578. _sysv:        unix_make
  579.     $(MAKE) unzips CF="$(CF) -DSYSV"
  580.  
  581. # extension to perform SVR4 package-creation after compilation
  582. _sysvp:        _sysv svr4package
  583.  
  584. #----------------------------------------------------------------------------
  585. #  Version 7 group (old/obsolescent):
  586. #----------------------------------------------------------------------------
  587.  
  588. pixel:        _v7    # Pixel 80, 100 (68000-based, V7/mostly BSD4.1 compat.)
  589. v7:        _v7    # generic Unix Version 7 box (prob. only Pixel...)
  590.  
  591. _v7:
  592.     make -f unix/Makefile unzips \
  593.      CF="$(CF) -DV7 -DNO_PARAM_H -DSHORT_NAMES -DBSD -DZMEM"
  594.  
  595. #----------------------------------------------------------------------------
  596. #  "Unique" group (require non-standard options):
  597. #----------------------------------------------------------------------------
  598.  
  599. # AT&T 7300 (M68000/SysV.3) (add -DSYSV? -DNO_LIMITS?)
  600. 7300:        unix_make
  601.     $(MAKE) unzips CF="$(CF) -DNO_DIR -DNO_MKDIR -DNO_STRNICMP"
  602.  
  603. 7300_gcc:    unix_make
  604.     $(MAKE) unzips CC=gcc LD=gcc LF2="" \
  605.      CF="-O2 -I. -DNO_DIR -DNO_MKDIR -DNO_STDLIB_H -DNO_STRNICMP $(LOC)"
  606.     $(STRIP) $(UNZIPS)
  607.  
  608. # IBM AIX 3.x on an RS/6000:  see rs6000 target below
  609. aix:        rs6000
  610.  
  611. # Amdahl (IBMish) mainframe, UTS (SysV) 1.2.4, 2.0.1, 3.x
  612. amdahl:        unix_make
  613.     $(MAKE) unzips CF="$(CF) -DSYSV -DNO_UID_GID"
  614.  
  615. # Amdahl UTS 2.1.4 with "extended file types" filesystem (aarrrggghhhh...)
  616. amdahl_eft:    unix_make
  617.     $(MAKE) unzips CF="$(CF) -eft -DSYSV -DNO_UID_GID"
  618.  
  619. # Apollo Domain/OS machines (added -D...SOURCE options) [Gordon Fox, 960810]
  620. apollo:        unix_make
  621.     $(MAKE) unzips CF="$(CF) -D_INCLUDE_BSD_SOURCE -D_INCLUDE_XOPEN_SOURCE"
  622.  
  623. # BSDI BSD/OS on 386 platform, using the assembler replacement for crc32.c
  624. bsdi:        unix_make
  625.     @echo 'NOTE:  use bsdi_noasm target for non-Intel BSD/OS compiles.'
  626.     $(MAKE) unzips CC=gcc2 LD=shlicc2 AS=gcc2\
  627.      CF="-O3 -Wall -I. -DASM_CRC -DBSD $(LOC)" CRC32=crc_gcc
  628.  
  629. # BSDI BSD/OS
  630. bsdi_noasm:    unix_make
  631. #    @echo 'NOTE:  use bsd target for non-Intel BSD/OS compiles.'
  632.     $(MAKE) unzips CC=gcc2 LD=shlicc2 AS=gcc2\
  633.      CF="-O3 -Wall -I. -DBSD $(LOC)"
  634.  
  635. # Coherent 3.x/4.x, Mark Williams C.  ``For Coherent's CC, it needs either
  636. # -T0 or -T150000 (or bigger) added to the CFLAGS, otherwise the compiler
  637. # runs out of memory and dies in zipinfo.c.'' [Fred "Fredex" Smith, 940719]
  638. coherent:    unix_make
  639.     $(MAKE) unzips CF="$(CF) -T0"
  640.  
  641. # Cray-2, Y-MP or C90, running Unicos 5.x to 8.x (SysV + BSD enhancements)
  642. # and Standard (ANSI) C compiler 3.0 or later.
  643. cray_opt:    unix_make
  644.     $(MAKE) unzips CF="$(CF) -h scalar3 -h vector3"
  645.  
  646. # The unzip41 build on a Cyber 910/SGI running Irix v3.3.3 was successful
  647. # with the following change to Makefile:
  648. cyber_sgi:    unix_make
  649.     $(MAKE) unzips CF="$(CF) -I/usr/include/bsd"\
  650.      LF="-lbsd $(LF)" SL="-lbsd $(SL)"
  651.  
  652. # 680x0, DIAB dnix 5.2/5.3 (a Swedish System V clone)
  653. #
  654. # Options for the dnix cc:
  655. #  -X7 = cc is strict ANSI C
  656. #  -X9 = warnings if a function is used without a declaration
  657. #
  658. dnix:        unix_make
  659.     $(MAKE) unzips CF="$(CF) -X7 -X9 -DDNIX"
  660.  
  661. # FreeBSD on Intel:
  662. freebsd:        unix_make
  663.     @echo 'NOTE:  use bsd target for non-Intel FreeBSD compiles (if any).'
  664.     $(MAKE) unzips CC=gcc LD=gcc AS=gcc\
  665.      CF="-O3 -Wall -I. -DASM_CRC -DBSD $(LOC)"\
  666.      AF="-Di386 $(AF)" CRC32=crc_gcc
  667.  
  668. # Generic BSDish Unix gcc.  ``The -O3 only works with later versions of gcc;
  669. # you may have to use -O2 or -O for earlier versions.  I have no idea why
  670. # -s causes this bug in gcc.''  [Bug:  "nm: unzip: no name list", "collect:
  671. # /usr/bin/nm returned 1 exit status".]  If you don't have strip, don't
  672. # worry about it (it just makes the executable smaller and can be replaced
  673. # with "echo" instead).
  674. #
  675. gcc:        unix_make
  676.     $(MAKE) unzips CC=gcc LD=gcc CF="-O3 -I. $(LOC)" LF2=""
  677.     $(STRIP) $(UNZIPS)
  678.  
  679. # Heurikon HK68 (68010), UniPlus+ System V 5.0, Green Hills C-68000
  680. hk68:        unix_make
  681.     $(MAKE) unzips CC="gcc" LD="gcc"\
  682.      LF="-n $(LF)" SL="-n $(SL)" FL="-n $(FL)"\
  683.      CF="-ga -X138 -I. $(LOC) -Dlocaltime=localti -Dtimezone=timezon"
  684.  
  685. # ISC Unix on 386 platform
  686. isc:        unix_make
  687.     $(MAKE) unzips LF2="-lc_s $(LF2)" CRC32=crc_sysv \
  688.      CF="-O -I. -DASM_CRC -DSYSV -DNO_UID_GID -DNEED_PTEM $(LOC)" \
  689.      AF="-DNO_UNDERLINE -DALIGNMENT='.align 16' $(AF)"
  690.  
  691. isc_gcc:    unix_make
  692.     $(MAKE) unzips AS=gcc CC=gcc LD=gcc CRC32=crc_gcc LF="-shlib $(LF)" \
  693.      LF2="" CF="-O3 -I. -DSYSV -DASM_CRC -DNO_UID_GID -DNEED_PTEM $(LOC)" \
  694.      AF="-DNO_UNDERLINE -Djecxz=jcxz -DALIGNMENT='.align 16' $(AF)"
  695.     $(STRIP) $(UNZIPS)
  696.  
  697. # "ISI machine (68025 CPU)" (based on e-mail from Rob White <rsw@tfs.com>;
  698. # no further information).  May also need DIRENT defined.
  699. isi:        unix_make
  700.     $(MAKE) unzips CF="$(CF) -DDECLARE_ERRNO"
  701.  
  702. # Linux on 386 platform, using the assembler replacement for crc32.c. (-O4 and
  703. # -fno-strength-reduce have virtually no effect beyond -O3.  Add "-m486
  704. # -malign-functions=2 -malign-jumps=2 -malign-loops=2" for Pentium [Pro]
  705. # systems.)
  706. linux:        unix_make
  707.     @echo 'NOTE:  use linux_noasm target for non-Intel Linux compiles.'
  708.     $(MAKE) unzips CC=gcc LD=gcc AS=gcc\
  709.      CF="-O3 -Wall -I. -DASM_CRC $(LOC)"\
  710.      AF="-Di386 $(AF)" CRC32=crc_gcc
  711. # GRR:  this echo is pointless; if user gets this far, no difference to install
  712. #    @echo 'Be sure to use the install_asm target rather than the install target'
  713.  
  714. linux_asm:    linux
  715.  
  716. # Linux (Posix, approximately SysV):  virtually any version since before 0.96,
  717. # for any platform.  Change "-O" to "-O3" or whatever, as desired...
  718. linux_noasm:    unix_make
  719.     $(MAKE) unzips CC=gcc LD=gcc CF="-O -Wall -I. $(LOC)"
  720.  
  721. # Linux with lcc compiler:  __inline__ (stat.h) not recognized, and must edit
  722. # /usr/include/gnu/types.h to get rid of "long long" if __LCC__ defined.  -O3
  723. # (or -O2 or -O) is ignored.  [GRR 960828: test target only]
  724. #
  725. linux_lcc:    unix_make
  726.     $(MAKE) unzips CC=lcc LD=lcc CF="-O3 -Wall -I. -D__inline__= $(LOC)"
  727.  
  728. # Linux host with go32 (djgpp) cross-compiler (go32crs.tgz) for 32-bit DOS.
  729. linux_dos:    unix_make
  730.     $(MAKE) unzips CC=go32gcc LD=go32gcc M=msdos CF="-O2 -Wall -I. $(LOC)"
  731. #    go32-strip unzip
  732. #    Due to limitations of the cross-compiling package, this has to be
  733. #    done manually:
  734.     @echo Copy $(UNZIPS) to your DOS partition and use coff2exe.
  735.  
  736. # Linux ELF shared library (ooo, it's so easy).  This is a test target for
  737. # now, and it only makes the UnZip/ZipInfo stuff (not fUnZip or UnZipSFX).
  738. # The version number may eventually change to match the UnZip version.  Or
  739. # not.  Whatever.  Also do "setenv LD_LIBRARY_PATH `pwd`" or similar to test
  740. # the DLL in place (with unzip_shlib, which is UnZip linked with the shared
  741. # library).
  742. #
  743. linux_shlib:    unix_make
  744.     $(MAKE) objsdll CC=gcc CF="-O3 -Wall -I. -DDLL -fPIC $(LOC)"
  745.     gcc -shared -Wl,-soname,libunzip.so.0 -o libunzip.so.0.3 $(OBJSDLL)
  746.     ln -sf libunzip.so.0.3 libunzip.so.0
  747.     ln -sf libunzip.so.0 libunzip.so
  748.     gcc -c -O unzipstb.c
  749.     gcc -o unzip_shlib unzipstb.o -L. -lunzip
  750.  
  751. # Linux ELF shared library, as above, but using inflate() from zlib (libz.so)
  752. # instead of the original UnZip version.  (libz was libgz prior to 0.94)
  753. linux_shlibz:    unix_make
  754.     $(MAKE) objsdll CC=gcc CF="-O3 -Wall -I. -DDLL -DUSE_ZLIB -fPIC $(LOC)"
  755.     gcc -shared -Wl,-soname,libunzip.so.0 -o libunzip.so.0.3 $(OBJSDLL)
  756.     ln -sf libunzip.so.0.3 libunzip.so.0
  757.     gcc -c -O unzipstb.c
  758.     gcc -o unzip unzipstb.o -L. -lunzip -lz
  759.  
  760. # Minix 1.5 PC for the 386.  Invoke as is to use default cc, or as "make
  761. # minix CC=gcc" to use gcc.  Try "make linux" if you have a working termios.h.
  762. minix:        unix_make
  763.     $(MAKE) unzips CF="$(CF) -DMINIX -DSHORT_NAMES" CC=$(CC) LD=$(CC)
  764.  
  765. # NeXT info.
  766. next:
  767.     @echo
  768.     @echo\
  769.  '  Please pick a specific NeXT target:  "make next10" will create a generic'
  770.     @echo\
  771.  '  NeXT executable; "make next2x" will create a smaller executable (for'
  772.     @echo\
  773.  '  NeXTstep 2.0 and higher); "make next3x" will create a small executable'
  774.     @echo\
  775.  '  with significantly better optimization (NeXTstep 3.0 and higher only);'
  776.     @echo\
  777.  '  "make nextfat" will create a fat, multi-architecture (NeXT plus Intel)'
  778.     @echo\
  779.  '  executable (NeXTstep 3.1 and higher only).'
  780.     @echo
  781.  
  782. # 68030 BSD 4.3+Mach.  NeXT 2.x: make the executable smaller.
  783. next2x:        unix_make
  784.     $(MAKE) unzips LF2="-object -s"
  785.  
  786. # NeXT 3.x: as above, plus better optimization.
  787. next3x:        unix_make
  788.     $(MAKE) unzips CF="-O2 -I. $(LOC)" LF2="-object -s"
  789.  
  790. # NeXT 3.1+: make the executable fat (multi-architecture binary [MAB],
  791. # for "black" [NeXT] and "white" [x86] hardware, so far).
  792. nextfat:    unix_make
  793.     $(MAKE) unzips CF="-O2 -I. $(LOC) -arch i386 -arch m68k" \
  794.      LF2="-arch i386 -arch m68k -object -s"
  795.  
  796. # Sequent Symmetry running Dynix/ptx (sort of SysV.3):  needs to link
  797. # with libseq to get symlink().
  798. ptx:        unix_make
  799.     $(MAKE) unzips CF="$(CF) -DSYSV -DTERMIO -DPTX" LF2="$(LF2) -lseq"
  800.  
  801. # Pyramid 90X (probably all) under >= OSx4.1, either universe.  (This is an
  802. # experimental target!  If it fails, use either pyr_ucb or pyr_att instead.)
  803. # The make in the BSD half is too stupid to understand $(MAKE), sigh...
  804. pyramid:    unix_make
  805.     -make -f unix/Makefile pyr_`universe`
  806.  
  807. # REGULUS:  68040-based, "real-time" SysV.3 mutant; uses gcc, with "REGULUS"
  808. # predefined.
  809. regulus:    unix_make
  810.     $(MAKE) unzips CF="$(CF) -traditional -DSYSV -DNO_MKDIR"
  811.  
  812. # IBM RS/6000 under AIX 3.2
  813. rs6000:        unix_make
  814.     $(MAKE) unzips CF="$(CF) -DBSD -D_BSD -DUNIX" LF2="-lbsd"
  815.  
  816. # SCO cross compile from Unix to DOS. Tested with Xenix/386 and OpenDeskTop.
  817. # Should work with Xenix/286 as well. (davidsen)  Note that you *must* remove
  818. # the Unix objects and executable before doing this!  (Piet Plomp:  gcc won't
  819. # recognize the -M0 flag which forces 8086 code.)  (GRR:  may need to reduce
  820. # stack to 0c00h if using 286/small-model code...?)
  821. sco_dos:    unix_make
  822.     $(MAKE) unzips CF="-O -I. $(LOC) -dos -M0" M=msdos \
  823.      LF="-dos -F 2000" LF2="-o unzip.exe" \
  824.      FL="-dos" FL2="-o funzip.exe" SL="-dos" SL2="-o unzipsfx.exe"
  825.  
  826. # SCO UNIX with shared libraries and no international support.  If you are
  827. # not using a USA-style keyboard and display, you may want to remove -nointl
  828. # to get support.  It adds quite a bit to the size of the executable.
  829. sco_sl:        unix_make
  830.     $(MAKE) unzips LF="$(LF) -nointl" LF2="$(LF2) -lc_s"\
  831.      SL="$(SL) -nointl" FL="$(FL) -nointl"
  832.  
  833. # SCO Xenix/286 2.2.3 or later with development system 2.2.1 or later
  834. sco_x286:    unix_make
  835.     $(MAKE) unzips CF="$(CF) -Mel2 -LARGE -DNO_MKDIR" \
  836.      LF="$(LF) -Mel2 -LARGE -lx" SL="$(SL) -Mel2 -LARGE" \
  837.      FL="$(FL) -Mel2 -LARGE"
  838.  
  839. # Sequent Symmetry with Dynix.  (386, but needs -DZMEM)
  840. # This should also work on Balance but I can't test it just yet.
  841. sequent:    unix_make
  842.     $(MAKE) unzips CF="$(CF) -DBSD -DZMEM"
  843.  
  844. # Sun 2, 3, 4 running SunOS 3.x
  845. sunos3:        unix_make
  846.     $(MAKE) unzips CF="$(CF) -DNO_UID_GID -DUID_USHORT"
  847.  
  848. # Generic System V + GNU C
  849. sysv_gcc:    unix_make
  850.     $(MAKE) unzips CC=gcc LD=gcc CF="-O2 -I. -DSYSV $(LOC)" LF2=""
  851.     $(STRIP) $(UNZIPS)
  852.  
  853. # AT&T 6300+, System V.2 Unix:  run-time out-of-memory error if don't use -Ml;
  854. # also compile-time error if work arrays dimensioned at HSIZE+2 (>32K)
  855. sysv6300:    unix_make
  856.     $(MAKE) unzips CF="$(CF) -Ml -DSYSV" LF="$(LF) -Ml"\
  857.      SL="$(SL) -Ml" FL="$(FL) -Ml"
  858.  
  859. # Texas Instruments System V.3 (running on HP 9000-1500)
  860. ti_sysv:    unix_make
  861.     $(MAKE) unzips CF="$(CF) -DSYSV -DNO_UID_GID -DUID_USHORT"
  862.  
  863. # SCO Xenix (Joe Foster 950508:  "unzip needs to be linked with -lx [for the
  864. # opendir(), readdir(), telldir(), rewinddir(), and closedir() calls]")
  865. xenix:         unix_make
  866.     $(MAKE) unzips LF2="$(LF2) -lx"
  867.  
  868. # Wombat 68000 (or whatever).
  869. # I didn't do this.  I swear.  No, really.
  870. wombat:        unix_make
  871.     @echo
  872.     @echo  '    Ha ha!  Just kidding.'
  873.     @echo
  874.